home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE23 / PZAZZDEM / PZAZZDEM.ZIP / VCL32 / PZAZZ.PAS next >
Pascal/Delphi Source File  |  1997-03-03  |  629b  |  27 lines

  1. unit Pzazz;
  2.  
  3. interface
  4.  
  5. Uses Classes,DsgnIntf,PZItemEd,PZColsEd,PZLabel,PZShaded,PZBPanel,PZSpButt,PZLView,PZTView,PZBitBtn;
  6.  
  7. procedure Register;
  8.  
  9. implementation
  10.  
  11. {$IFNDEF WIN32}
  12.   {$R PZAZZ16.DCR}
  13. {$ELSE}
  14.   {$R PZAZZ32.RES}
  15. {$ENDIF}
  16.  
  17. procedure Register;
  18.  
  19. Begin
  20.   RegisterComponents('Pzazz!',[TPZLabel,TPZShaded,TPZBitmapPanel,TPZSpeedButton,
  21.                                TPZBitmapButton,TPZListView,TPZTreeView]);
  22.   RegisterPropertyEditor(TypeInfo(TStrings),TPZListView,'Items',TPZItemListProperty);
  23.   RegisterPropertyEditor(TypeInfo(TPZColumns),TPZListView,'Columns',TPZColumnsProperty);
  24. End;
  25.  
  26. end.
  27.